home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / c-lang / strmc105.lha / StormC-Demo / INCLUDE / clib / locale_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  3KB  |  83 lines

  1. #ifndef  CLIB_LOCALE_PROTOS_H
  2. #define  CLIB_LOCALE_PROTOS_H
  3.  
  4. /*
  5. **    $VER: locale_protos.h 38.5 (18.6.93)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  LIBRARIES_LOCALE_H
  18. #include <libraries/locale.h>
  19. #endif
  20. #ifndef  DOS_DOS_H
  21. #include <dos/dos.h>
  22. #endif
  23. #ifndef  UTILITY_HOOKS_H
  24. #include <utility/hooks.h>
  25. #endif
  26. #ifndef  UTILITY_TAGITEM_H
  27. #include <utility/tagitem.h>
  28. #endif
  29. #ifndef  REXX_STORAGE_H
  30. #include <rexx/storage.h>
  31. #endif
  32.  
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36.  
  37. /*--- functions in V38 or higher (Release 2.1) ---*/
  38. void CloseCatalog( struct Catalog *catalog );
  39. void CloseLocale( struct Locale *locale );
  40. ULONG ConvToLower( struct Locale *locale, unsigned long character );
  41. ULONG ConvToUpper( struct Locale *locale, unsigned long character );
  42. void FormatDate( struct Locale *locale, STRPTR fmtTemplate,
  43.     struct DateStamp *date, struct Hook *putCharFunc );
  44. APTR FormatString( struct Locale *locale, STRPTR fmtTemplate, APTR dataStream,
  45.     struct Hook *putCharFunc );
  46. STRPTR GetCatalogStr( struct Catalog *catalog, long stringNum,
  47.     STRPTR defaultString );
  48. STRPTR GetLocaleStr( struct Locale *locale, unsigned long stringNum );
  49. BOOL IsAlNum( struct Locale *locale, unsigned long character );
  50. BOOL IsAlpha( struct Locale *locale, unsigned long character );
  51. BOOL IsCntrl( struct Locale *locale, unsigned long character );
  52. BOOL IsDigit( struct Locale *locale, unsigned long character );
  53. BOOL IsGraph( struct Locale *locale, unsigned long character );
  54. BOOL IsLower( struct Locale *locale, unsigned long character );
  55. BOOL IsPrint( struct Locale *locale, unsigned long character );
  56. BOOL IsPunct( struct Locale *locale, unsigned long character );
  57. BOOL IsSpace( struct Locale *locale, unsigned long character );
  58. BOOL IsUpper( struct Locale *locale, unsigned long character );
  59. BOOL IsXDigit( struct Locale *locale, unsigned long character );
  60. struct Catalog *OpenCatalogA( struct Locale *locale, STRPTR name,
  61.     struct TagItem *tags );
  62. struct Catalog *OpenCatalog( struct Locale *locale, STRPTR name, Tag tag1,
  63.     ... );
  64. struct Locale *OpenLocale( STRPTR name );
  65. BOOL ParseDate( struct Locale *locale, struct DateStamp *date,
  66.     STRPTR fmtTemplate, struct Hook *getCharFunc );
  67. ULONG StrConvert( struct Locale *locale, STRPTR string, APTR buffer,
  68.     unsigned long bufferSize, unsigned long type );
  69. LONG StrnCmp( struct Locale *locale, STRPTR string1, STRPTR string2,
  70.     long length, unsigned long type );
  71.  
  72. #ifdef __cplusplus
  73. }
  74. #endif
  75.  
  76. #ifdef STORMPRAGMAS
  77. #ifndef _INCLUDE_PRAGMA_LOCALE_LIB_H
  78. #include <pragma/locale_lib.h>
  79. #endif
  80. #endif
  81.  
  82. #endif     /* CLIB_LOCALE_PROTOS_H */
  83.